home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / DINKDEMO / DC_SCRIB / DSCRIBBL.H < prev    next >
Text File  |  1992-07-08  |  423b  |  27 lines

  1. /*
  2.     File:        DScribbleApp.h
  3.  
  4.     Written by:    Mark Gross
  5.  
  6.     Copyright:    ⌐ 1992 by Applied Technical Software, all rights reserved.
  7.     Use at your own risk.
  8.  
  9. */
  10.  
  11. // This is the Class declaration of theDScribbleApp subclass to DApplciaton
  12.  
  13. #ifndef __DSCRIBBLEAPP__
  14. #define __DSCRIBBLEAPP__
  15.  
  16. #include "DApplication.h"
  17.  
  18. class DScribbleApp : public DApplication
  19. {
  20. public:
  21.     virtual DDocument* MakeDDoc(Boolean OpenFromFile);
  22. };
  23.  
  24.  
  25. #endif 
  26.  
  27.